home *** CD-ROM | disk | FTP | other *** search
/ PC Media 23 / PC MEDIA CD23.iso / share / prog / anubis / idlexec.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-10-04  |  581 b   |  22 lines

  1. #ifndef IDLEXEC.H
  2. #define IDLEXEC.H
  3. // ------------------------------------------+
  4. // Inclusión de librerias Anubis Software    |
  5. // ------------------------------------------+
  6. #include "mdefs.h"
  7.  
  8. // ------------------------------------+
  9. // Variables globales de la librería   |
  10. // ------------------------------------+
  11.  
  12. void EventIddleExecution(void);
  13. void EventIddleFinExecution(void);
  14. #ifndef __SC__
  15. void EventEmpilaIddleRutina(void far (*)(void));
  16. #else
  17. void EventEmpilaIddleRutina(void (far *)(void));
  18. #endif
  19. void EventDesempilaIddleRutina(void);
  20.  
  21. #endif
  22.